home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / milia.dxr / 00143.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  894 b   |  45 lines

  1. on enterFrame
  2.   global Gflag
  3.   set Gflag to 0
  4.   set the visible of sprite 2 to 0
  5. end
  6.  
  7. on mouseUp
  8.   if rollOver(1) then
  9.     set the visible of sprite 2 to 1
  10.     go("bebe")
  11.   end if
  12. end
  13.  
  14. on exitFrame
  15.   if rollOver(17) then
  16.     if the visible of sprite 17 = 0 then
  17.       set the visible of sprite 17 to 1
  18.     end if
  19.   else
  20.     set the visible of sprite 17 to 0
  21.   end if
  22.   if rollOver(18) then
  23.     if the visible of sprite 18 = 0 then
  24.       set the visible of sprite 18 to 1
  25.     end if
  26.   else
  27.     set the visible of sprite 18 to 0
  28.   end if
  29.   if rollOver(19) then
  30.     if the visible of sprite 19 = 0 then
  31.       set the visible of sprite 19 to 1
  32.     end if
  33.   else
  34.     set the visible of sprite 19 to 0
  35.   end if
  36.   if rollOver(20) then
  37.     if the visible of sprite 20 = 0 then
  38.       set the visible of sprite 20 to 1
  39.     end if
  40.   else
  41.     set the visible of sprite 20 to 0
  42.   end if
  43.   go(the frame)
  44. end
  45.